blob: 17e78c0a77aab360eff787cc92bc645530555aa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import { Shell } from "@/components/shell"
import VendorDocumentListClientEvcp from "@/components/document-lists/vendor-doc-list-client-evcp"
// Layout 컴포넌트는 서버 컴포넌트입니다
export default async function EvcpDocuments({
children,
}: {
children: React.ReactNode
}) {
return (
<Shell className="gap-2">
<VendorDocumentListClientEvcp>
{children}
</VendorDocumentListClientEvcp>
</Shell>
)
}
|